/* ISCRON Custom CSS with Unique Styling */
@import url('https://fonts.googleapis.com/css2?family=Prata&family=Spectral:wght@400;600&family=Mulish:wght@300;400;700&display=swap');

:root {
    --inl-saffron: #F8782F;
    --inl-deep-saffron: #FF7722;
    --inl-maroon: #F8782F;
    --inl-deep-maroon: #5A0000;
    --inl-gold: #f8782f;
    --inl-cream: #FFF8DC;
    --inl-off-white: #FAF9F6;
    --inl-text-dark: #333333;
    --inl-shadow: rgba(0, 0, 0, 0.15);
    --dark-color: #422006;
    --primary-color: #ff7b00;
    --secondary-color: #f8782f;
    --accent-color: #ffedd5;
    --light-color: #fff9f0;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    color: var(--inl-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: url("");
}

/* Decorative Elements */
.inl-om-symbol {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--inl-gold);
    opacity: 0.3;
    z-index: 1;
    font-family: 'Prata', serif;
}

.inl-mandala-corners::before,
.inl-mandala-corners::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23D4AF37' stroke-width='0.8'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='%23D4AF37' stroke-width='0.6'/%3E%3Cpath d='M50,5 L50,95 M5,50 L95,50 M26.5,26.5 L73.5,73.5 M26.5,73.5 L73.5,26.5' stroke='%23D4AF37' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.inl-mandala-corners::before {
    top: 0;
    left: 0;
}

.inl-mandala-corners::after {
    bottom: 0;
    right: 0;
}

/* Lotus Border */
.inl-lotus-border {
    position: relative;
    padding: 40px 20px;
}

.inl-lotus-border::before,
.inl-lotus-border::after {
    content: "";
    position: absolute;
    height: 40px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 50'%3E%3Cpath d='M0,25 Q250,0 500,25 T1000,25' fill='none' stroke='%23D4AF37' stroke-width='1'/%3E%3Ccircle cx='125' cy='25' r='10' fill='none' stroke='%23D4AF37'/%3E%3Ccircle cx='375' cy='25' r='10' fill='none' stroke='%23D4AF37'/%3E%3Ccircle cx='625' cy='25' r='10' fill='none' stroke='%23D4AF37'/%3E%3Ccircle cx='875' cy='25' r='10' fill='none' stroke='%23D4AF37'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: contain;
    opacity: 0.4;
}

.inl-lotus-border::before {
    top: 0;
}

.inl-lotus-border::after {
    bottom: 0;
    transform: rotate(180deg);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--inl-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--inl-saffron);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--inl-deep-saffron);
}

/* Header Styles */
.inl-header {
     background: linear-gradient(to top,#ffe6b6, #ffffff); /* floralwhite to white */
    padding: 0px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  
    transition: all 0.4s ease;
}

.inl-header.scrolled {
    background-color: floralwhite;
    box-shadow: 0 2px 20px var(--inl-shadow);
}

.inl-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
}

.inl-logo {
    display: flex;
    align-items: center;
    z-index: 101;
}

.inl-logo img{
    height: 80px;
}

.inl-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 101;
}

.inl-nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--inl-maroon);
    margin: 6px auto;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.inl-nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.inl-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.inl-nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.inl-nav-menu {
    display: flex;
    list-style: none;
}

.inl-nav-item {
    position: relative;
    margin: 0 5px;
}

.inl-nav-link {
  color: var(--inl-maroon);
    text-decoration: none;
    font-weight: 800;
    padding: 8px 16px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
}

.inl-nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--inl-saffron);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.inl-nav-link:hover {
    color: var(--inl-deep-saffron);
}

.inl-nav-link:hover::before {
    transform: scaleX(1);
}

/* Hero Section */
.inl-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0px 20px 0px;
    overflow: hidden;
}

.inl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.95;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-image 1.5s ease-in-out, opacity 0.5s ease;
    pointer-events: none; /* Prevents interaction blocking */
    will-change: background-image, opacity; /* Performance hint */
}

.inl-hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.inl-hero-title {
    font-family: 'Prata', serif;
  font-size: 3.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* stronger for better readability */
  position: relative;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}



#misty-background{
    
 background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  transition: all 0.3s ease;
}


.inl-hero-title::before {
    left: -40px;
}

.inl-hero-title::after {
    right: -40px;
}

.inl-hero-subtitle {
    font-family: 'Spectral', serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--inl-deep-saffron);
    letter-spacing: 1px;
}

.inl-hero-desc {
    max-width: 600px;
    margin: 0 auto 10px;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 600;
    color: #fff;
}

.inl-hero-mantra {
    font-family: 'Spectral', serif;
    font-size: 1.8rem;
    color: var(--inl-maroon);
    position: relative;
    padding: 10px 0;
}

.inl-hero-contact {
    font-size: 1rem;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.inl-hero-address,
.inl-hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    box-shadow: 0 2px 10px var(--inl-shadow);
}

.inl-hero-address i,
.inl-hero-phone i {
    color: var(--inl-saffron);
    margin-right: 10px;
}

.inl-btn-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.inl-btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: all 0.4s ease;
}

.inl-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.4s ease;
}

.inl-btn-primary {
    color: var(--inl-cream);
    border: 2px solid var(--inl-saffron);
}

.inl-btn-primary::before {
    background: var(--inl-saffron);
}

.inl-btn-primary:hover {
    color: var(--inl-saffron);
}

.inl-btn-primary:hover::before {
    transform: translateY(100%);
}

.inl-btn-secondary {
    color: var(--inl-maroon);
    background-color: white;
}

.inl-btn-secondary::before {
    background: transparent;
}

.inl-btn-secondary:hover {
    color: var(--inl-cream);
}

.inl-btn-secondary:hover::before {
    background: var(--inl-maroon);
}


/* Responsive Styles */
@media (max-width: 768px) {
    .inl-nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(250, 249, 246, 0.98);
        padding: 100px 20px 20px;
        z-index: 100;
    }

    .inl-nav-menu.show {
        display: flex;
    }

    .inl-nav-item {
        margin: 10px 0;
        text-align: center;
    }

    .inl-nav-toggle {
        display: block;
    }

    .inl-hero-title {
        font-size: 2.8rem;
    }

    .inl-hero-title::before,
    .inl-hero-title::after {
        position: static;
        margin: 0 10px;
        transform: none;
    }

    .inl-hero-subtitle {
        font-size: 1.1rem;
    }

    .inl-hero-mantra {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .inl-hero-title {
        font-size: 2.2rem;
    }

    .inl-hero-subtitle {
        font-size: 1rem;
    }

    .inl-hero-desc {
        font-size: 0.95rem;
    }

    .inl-hero-mantra {
        font-size: 1.3rem;
    }

    .inl-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* For minimum width of 324px */
@media (max-width: 340px) {
    .inl-hero-title {
        font-size: 1.8rem;
    }

    .inl-hero-subtitle {
        font-size: 0.9rem;
    }

    .inl-hero-desc {
        font-size: 0.85rem;
    }

    .inl-hero-mantra {
        font-size: 1.1rem;
    }

    .inl-btn-container {
        flex-direction: column;
        gap: 15px;
    }

    .inl-btn {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
    }

    .inl-hero-emblem {
        width: 70px;
        height: 70px;
    }

    .inl-logo-main {
        font-size: 1.2rem;
    }

    .inl-logo-sub {
        font-size: 0.6rem;
    }

    .inl-logo-emblem {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}



/* style for about section */

.inlAboutSection {
    max-width: 90%;
    margin: 0 auto;
    padding: 25px 20px 0px 20px;
    position: relative;
    overflow: hidden;
  }
  
  /* Decorative elements */
  .inlDecorativeElement {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
  }
  
  .inlDecorativeElement1 {
    top: 50px;
    left: -60px;
    font-size: 180px;
    transform: rotate(-15deg);
    color: var(--inl-maroon);
  }
  
  .inlDecorativeElement2 {
    bottom: 100px;
    right: -60px;
    font-size: 150px;
    transform: rotate(10deg);
    color: var(--inl-deep-saffron);
  }
  
  /* Header styles */
  .inlHeader {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  .inlHeading{
text-align: center;
padding-bottom: 25px;
  }

  .inlHeading h2{
    font-size: 35px;
    font-weight: 600;
  }

  .inlHeading p{
    font-size: 20px;
    font-weight: 600;
  }

  .about-section{
    padding: 2% 2% 0% 2%;
  }
  
  .inlHeaderTitle {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    margin: 0;
    color: var(--inl-maroon);
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
  }
  
  .inlHeaderTitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--inl-deep-saffron);
    border-radius: 3px;
  }
  
  .inlHeaderSubtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--inl-maroon);
    margin-top: 15px;
    opacity: 0.9;
  }
  
  /* Main content */
  .inlMainContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
  }
  
  /* Intro section */
  .inlIntroSection {
    background: var(--inl-off-white);
    border-radius: 12px;
    padding-top: 10px;
    padding-left: 15px;
    box-shadow: 0 15px 35px var(--inl-shadow);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--inl-gold);
    border-right: 5px solid var(--inl-gold);
    transition: transform 0.3s ease;
  }
  
  .inlIntroSection:hover {
    transform: translateY(-5px);
  }
  
  .inlIntroSection::before {
    content: "🕉️";
    position: absolute;
    top: -15px;
    right: 10px;
    font-size: 120px;
    opacity: 0.07;
    transform: rotate(15deg);
  }
  
  .inlIntroParagraph {
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .inlFounder {
    font-weight: 500;
    font-style: italic;
    display: block;
    margin-top: 25px;
    border-top: 1px dashed rgba(128, 0, 0, 0.2);
    padding-top: 20px;
    font-size: 1.1rem;
  }
  
  .inlFounder span {
    font-weight: 600;
    color: var(--inl-maroon);
  }
  
  /* Vision and Purpose sections */
  .inlVisionSection, .inlPurposeSection {
    background: var(--inl-off-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 15px 35px var(--inl-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  
  .inlVisionSection:hover, .inlPurposeSection:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--inl-shadow);
  }
  
  .inlSectionTitle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-family: 'Crimson Pro', serif;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--inl-maroon);
    font-weight: 600;
    position: relative;
  }
  
  .inlSectionTitle span {
    font-size: 2.2rem;
  }
  
  .inlVisionContent, .inlPurposeContent {
    padding-left: 10px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
  }
  
  .inlPurposeList {
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
  }
  
  .inlPurposeItem {
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    list-style-type: none;
  }
  
  .inlPurposeItem::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--inl-deep-saffron);
    font-size: 1.8rem;
    top: -12px;
  }
  
  /* Footer quote section */
  .inlQuoteSection {
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 1;
  }
  
  .inlQuote {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--inl-maroon);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding: 0 30px;
  }
  
  .inlQuote::before, .inlQuote::after {
    content: "";
    font-size: 2.5rem;
    position: absolute;
    color: var(--inl-saffron);
    font-family: 'Georgia', serif;
    line-height: 0;
  }
  
  .inlQuote::before {
    left: 0;
    top: 15px;
  }
  
  .inlQuote::after {
    content: "";
    right: 0;
    bottom: 0;
  }
  
.inlCTA {
  display: inline-block;
  background: linear-gradient(135deg, var(--inl-deep-saffron), var(--inl-maroon));
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.7px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 18px rgba(128, 0, 0, 0.25);
  cursor: pointer;
  text-align: center;
  user-select: none;
}

.inlCTA:hover {
  background: var(--inl-off-white);
  color: var(--inl-maroon);
  box-shadow: 0 10px 24px rgba(128, 0, 0, 0.35);
  transform: translateY(-2px); /* subtle lift on hover */
}

  
  /* Responsive styles */
  @media (max-width: 768px) {
    .inlHeaderTitle {
      font-size: 2.8rem;
    }
    
    .inlHeaderSubtitle {
      font-size: 1rem;
    }
    
    .inlIntroSection, .inlVisionSection, .inlPurposeSection {
      padding: 25px;
    }
    
    .inlSectionTitle {
      font-size: 1.6rem;
    }
    
    .inlSectionTitle span {
      font-size: 1.8rem;
    }
    
    .inlQuote {
      font-size: 1.3rem;
      padding: 0 20px;
    }
    
    .inlDecorativeElement1, .inlDecorativeElement2 {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .inlHeaderTitle {
      font-size: 2.2rem;
    }
    
    .inlAboutSection {
      padding: 40px 15px;
    }
    
    .inlIntroSection, .inlVisionSection, .inlPurposeSection {
      padding: 20px;
    }
    
    .inlVisionContent, .inlPurposeContent {
      padding-left: 15px;
    }
    
    .inlPurposeItem {
      padding-left: 25px;
    }
    
    .inlCTA {
      padding: 10px 25px;
      font-size: 0.9rem;
    }
    
    .inlIntroParagraph, .inlVisionContent, .inlPurposeContent {
      font-size: 0.95rem;
    }
  }

  .inlRow {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .inlRow1 {
    align-items: stretch;
  }
  
  .inlRow2 {
    align-items: flex-start;
  }
  
  .inlIntroSection,
  .inlImageSection,
  .inlVisionSection,
  .inlPurposeSection {
    flex: 1;
    width: 100%;
    height: auto;
  }
  
  .inlImageSection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px var(--inl-shadow);
  }
  
  /* Responsive fallback */
  @media (max-width: 768px) {
    .inlRow {
      flex-direction: column;
    }
  }

  

  /* style for maryada purusottam section */
          /* Typography */
          h1, h2, h3, h4, h5 {
            font-family: 'Crimson Text', serif;
            font-weight: 600;
            color: var(--dark-color);
        }

        /* Main section */
        .inl-seva-container {
            max-width: 98%;
            margin: 0rem auto;
            padding: 0 1rem;
        }

        .inl-card {
            background-color: rgb(235, 235, 235);
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
        }

        /* Header styling */
        .inl-seva-header {
                background: linear-gradient(to top, #ffe6b6, #ffffff);
            /*color: white;*/
            text-align: center;
            position: relative;
            overflow: hidden;
            padding-bottom: 30px;
        }

        .inl-seva-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.05)" d="M0 0h100v50H0z"/></svg>');
            opacity: 0.15;
        }

        .inl-title {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            /*color: #e3641c;*/
            position: relative;
        }

        .inl-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            color: #e3641c;
            margin-bottom: 1rem;
            position: relative;
        }

        .inl-ornament {
            display: block;
            width: 80px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.4);
            margin: 1rem auto;
            position: relative;
        }

        .inl-ornament::before, .inl-ornament::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.8);
            top: -2px;
        }

        .inl-ornament::before {
            left: 0;
        }

        .inl-ornament::after {
            right: 0;
        }

        /* Content styling */
        .inl-content {
            padding: 2.5rem;
        }

        .inl-intro {
            font-size: 16px;
            text-align: center;
            color: var(--dark-color);
            padding: 0 1rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* Section styling */
        .inl-section {
            margin: 1.25rem 0;
        }

        .inl-section-title {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .inl-section-title .inl-icon {
            margin-right: 0.75rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: var(--accent-color);
            border-radius: 50%;
            color: var(--primary-color);
        }

        /* Rules list */
        .inl-rules-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .inl-rule-item {
            background-color: white;
            padding: 1.25rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .inl-rule-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        }

        .inl-rule-icon {
            margin-right: 1rem;
            color: var(--primary-color);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .inl-rule-text {
            font-size: 1rem;
        }

        /* Routine list */
        .inl-routine-container {
            display: grid;
            grid-template-columns: repeat(5, minmax(236px, 1fr));
            gap: 1.5rem;
            margin-top: 20px;
        }

        .inl-routine-item {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .inl-routine-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--secondary-color);
        }

        .inl-routine-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        }

        .inl-routine-icon {
            display: block;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .inl-routine-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        .inl-routine-description {
            font-size: 0.9rem;
            color: #666;
        }

        /* Goals section */
        .inl-goals-container {
           padding: 5px 15px 5px 15px;
    background: #f8782f;
    border-radius: 12px;
    margin: 0px 55px;
        }

        .inl-goals-title {
            text-align: center;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        
            padding-bottom: 0.5rem;
        }

        .inl-goals-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 2px;
            background-color: var(--primary-color);
        }

        .inl-goals-list {
            list-style-type: none;
            padding: 0;
        }

        .inl-goals-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            background-color: white;
            padding: 1rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .inl-goals-icon {
            margin-right: 1rem;
            color: var(--primary-color);
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        @media screen and (max-width: 1024px) {
            .inl-routine-container {
              grid-template-columns: repeat(3, minmax(200px, 1fr));
            }
          }
          
          @media screen and (max-width: 768px) {
            .inl-rules-container,
            .inl-routine-container {
              grid-template-columns: repeat(2, minmax(180px, 1fr));
              padding: 0 1rem;
            }
          
            .inl-content {
              padding: 1.5rem;
            }
          }
          
          @media screen and (max-width: 480px) {
            .inl-rules-container,
            .inl-routine-container {
              grid-template-columns: 1fr;
            }
          
            .inl-title {
              font-size: 1.75rem;
            }
          
            .inl-subtitle {
              font-size: 1rem;
            }
          
            .inl-section-title {
              font-size: 1.25rem;
            }
          
            .inl-routine-item,
            .inl-rule-item {
              flex-direction: column;
              align-items: flex-start;
            }
          
            .inl-rule-icon {
              margin-bottom: 0.5rem;
            }
          
            .inl-content {
              padding: 1rem;
            }
          }
          
        @media (max-width: 400px) {
            .inl-goals-container {
                padding: 10px;
            }
        
            .inl-goals-title {
                font-size: 1.2rem;
                text-align: center;
                padding-bottom: 0.3rem;
            }
        
            .inl-goals-title::after {
                left: 20%;
                width: 60%;
            }
        
            .inl-rule-item {
                margin-bottom: 10px;
                padding: 8px;
                text-align: center;
                font-size: 0.95rem;
            }
        
            .inl-rule-text {
                display: block;
                font-size: 0.95rem;
                word-wrap: break-word;
            }
        }
        .inl-rule-item {
            background: #f5f5f5;
            padding: 12px 16px;
            margin: 10px 0;
            border-radius: 8px;
        }
        
        .inl-rule-text {
            font-size: 1rem;
        }
                

        /* CTA Section */
        .inl-cta-section {
            text-align: center;
            margin: 1rem 0 1rem;
        }

        .inl-cta-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .inl-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .inl-button {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: none;
            outline: none;
        }

        .inl-button-primary {
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 123, 0, 0.25);
        }

        .inl-button-secondary {
            background-color: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .inl-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .inl-button-primary:hover {
            background-color: #e66f00;
        }

        .inl-button-secondary:hover {
            background-color: var(--accent-color);
        }

        /* Decorative elements */
        .inl-lotus-decoration {
            position: absolute;
            opacity: 0.05;
            width: 150px;
            height: 150px;
            z-index: 0;
            pointer-events: none;
        }

        .inl-top-right {
            top: -20px;
            right: -20px;
            transform: rotate(45deg);
        }

        .inl-bottom-left {
            bottom: -20px;
            left: -20px;
            transform: rotate(-135deg);
        }


        /* Responsive design */
        @media (max-width: 768px) {
            .inl-title {
                font-size: 2rem;
            }

            .inl-content {
                padding: 1.5rem;
            }

            .inl-buttons {
                flex-direction: column;
                align-items: center;
            }

            .inl-button {
                width: 100%;
                max-width: 300px;
                margin-bottom: 0.5rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .inl-title {
                font-size: 1.75rem;
            }

            .inl-subtitle {
                font-size: 1rem;
            }

            .inl-section-title {
                font-size: 1.25rem;
            }

            .inl-rule-item,
            .inl-routine-item,
            .inl-goals-item {
                padding: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .inl-fade-in {
            animation: fadeIn 0.8s ease forwards;
            opacity: 0;
        }

        .inl-delay-1 { animation-delay: 0.2s; }
        .inl-delay-2 { animation-delay: 0.4s; }
        .inl-delay-3 { animation-delay: 0.6s; }
        .inl-delay-4 { animation-delay: 0.8s; }


        /* updated styles are here */
        
        .inl-two-card-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 0px auto;
            max-width: 90%x;
            padding: 20px;
          }
          
          .inl-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            flex: 1 1 45%;
            min-width: 300px;
          }
          
          .inl-section-title {
            font-size: 24px;
            margin-bottom: 15px;
          }
          
          .inl-list {
            margin-top: 15px;
            padding-left: 20px;
          }
          
          .inl-list li {
            margin-bottom: 10px;
            /* list-style: none; */
            line-height: 1.6;
          }
          

        /* style for chitra kuta ashram */
        
        /* Main section */
        .inl-donation-container {
            max-width: 98%;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .inl-donation-card {
            background-color: #fff;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            position: relative;
        }

        /* Header styling */
        .inl-donation-header {
               background: linear-gradient(to top, #ffe6b6, #ffffff);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .inl-donation-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.05)" d="M0 0h100v50H0z"/></svg>');
            opacity: 0.15;
        }

        .inl-donation-title {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: #e3651e;
            position: relative;
        }

        .inl-donation-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            color: #e3651e;
            margin-bottom: 1rem;
            position: relative;
        }

        .inl-donation-ornament {
            display: block;
            width: 80px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.4);
            margin: 1rem auto;
            position: relative;
        }

        .inl-donation-ornament::before, .inl-donation-ornament::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.8);
            top: -2px;
        }

        .inl-donation-ornament::before {
            left: 0;
        }

        .inl-donation-ornament::after {
            right: 0;
        }

        /* Content styling */
        .inl-donation-content {
            padding: 1rem;
        }

        .inl-donation-intro {
            font-size: 1.15rem;
            text-align: center;
            color: var(--dark-color);
            padding: 0 1rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* Two column layout */
        .inl-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: stretch; /* makes both columns equal height */
        }
        
        
        /* Section styling */
        .inl-donation-section {
            margin: 0.5rem 0;
        }

        .inl-section-title {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .inl-section-title .inl-icon {
            margin-right: 0.75rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: var(--accent-color);
            border-radius: 50%;
            color: var(--primary-color);
        }

        /* Why donate section */

        .inl-donation-purpose {
            background-color: white;
            padding: 1.25rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-color);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .inl-donation-purpose:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        }

        .inl-purpose-icon {
            margin-right: 1rem;
            color: var(--primary-color);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .inl-purpose-text {
            font-size: 1rem;
        }
        .inl-donation-purposes{
            padding: 12px 17px;
            line-height: 30px;
        }

        /* Donation options */
        .inl-donation-options-container {
            border-radius: var(--border-radius);
            margin: 1.5rem 0 0 0;
        }

        .inl-donation-options-title {
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            padding-bottom: 0.5rem;
        }

        .inl-donation-options-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 2px;
            background-color: var(--primary-color);
        }

        .inl-donation-note {
            text-align: center;
            font-style: italic;
            margin-bottom: 0.5rem;
            font-weight: bolder;
        }

        .inl-options-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(30%, 1fr));
            gap: 1rem;
        }

        .inl-option-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

        .inl-option-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        }

        .inl-option-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .inl-option-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Contact section */
        .inl-contact-section {
            background-color: rgb(249, 231, 198);
            padding: 0.75rem;
            border-radius: var(--border-radius);
        }

        .inl-contact-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
            text-align: center;
        }

        .inl-contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .inl-contact-item {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 1rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .inl-contact-icon {
            margin-right: 1rem;
            color: var(--primary-color);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .inl-contact-item a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .inl-contact-item a:hover {
            text-decoration: underline;
        }

        /* CTA Button */
        .inl-donation-cta {
            text-align: center;
            margin: 1rem 0 1rem;
        }

        .inl-donation-button {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.25rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
            cursor: pointer;
            border: none;
        }

        .inl-donation-button:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(156, 39, 176, 0.4);
        }

        /* Quote */
        .inl-donation-quote {
            background-color: var(--accent-color);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            position: relative;
            font-family: 'Crimson Text', serif;
            text-align: center;
        }

        .inl-quote-text {
            font-style: italic;
            font-size: 1.15rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .inl-quote-text::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -30px;
            left: 10px;
            color: rgba(156, 39, 176, 0.1);
            font-family: 'Georgia', serif;
            z-index: -1;
        }

        /* Decorative elements */
        .inl-mandala-decoration {
            position: absolute;
            opacity: 0.05;
            width: 180px;
            height: 180px;
            z-index: 0;
            pointer-events: none;
        }

        .inl-top-right {
            top: -40px;
            right: -40px;
        }

        .inl-bottom-left {
            bottom: -40px;
            left: -40px;
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .inl-fade-in {
            animation: fadeIn 0.8s ease forwards;
            opacity: 0;
        }

        .inl-delay-1 { animation-delay: 0.2s; }
        .inl-delay-2 { animation-delay: 0.4s; }
        .inl-delay-3 { animation-delay: 0.6s; }
        .inl-delay-4 { animation-delay: 0.8s; }

        /* Responsive design */
        @media (max-width: 992px) {
            .inl-columns {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .inl-donation-title {
                font-size: 2rem;
            }

            .inl-donation-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .inl-donation-title {
                font-size: 1.75rem;
            }

            .inl-donation-subtitle {
                font-size: 1rem;
            }

            .inl-section-title {
                font-size: 1.25rem;
            }

            .inl-donation-purpose {
                padding: 1rem;
            }

            .inl-donation-options-container,
            .inl-contact-section {
                padding: 1.5rem;
            }
        }

        /* style for chitrakuta ashram */


        .inr-container {
            max-width: 90%;
            margin: 0 auto;
        }

        .inr-header {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }


        .inr-header::before {
            left: 0;
        }

        .inr-header::after {
            right: 0;
        }

        .inr-celebration-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            position: relative;
            display: inline-block;
        }


        .inr-subtitle {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin: 0 auto 0.5rem;
        }

        .inr-divider {
            height: 3px;
            background: var(--gold-gradient);
            width: 150px;
            margin: 1.5rem auto;
            border-radius: 10px;
        }

        .inr-section-title {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .inr-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 10px;
        }

        .inr-events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, auto);
            gap: 2rem;
            margin: 25px;
            padding-bottom: 25px;
        }

        .inr-event-card {
            position: relative;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #f8782f;
            border-bottom: 5px solid #f8782f;
        }

        .inr-event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .inr-event-content {
            padding: 1.5rem;
        }

        .inr-event-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            display: block;
            text-align: center;
        }

        .inr-event-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .inr-event-description {
            font-size: 1rem;
            color: #666;
            margin-bottom: 1rem;
        }

        .inr-join-section {
            background: var(--gold-gradient);
            padding: 3rem 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .inr-join-title {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .inr-join-text {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .inr-location {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .inr-contact-section {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .inr-contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .inr-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .inr-contact-icon {
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .inr-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .inr-btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background-color: #fff;
            color: var(--dark-color);
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .inr-btn:hover {
            background-color: var(--primary-color);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
        }

        .inr-btn:nth-child(2) {
            border-color: var(--primary-color);
        }

        .inr-btn:nth-child(2):hover {
            background-color: var(--secondary-color);
            box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
        }

        .inr-btn:nth-child(3) {
            border-color: var(--primary-color);
        }

        .inr-btn:nth-child(3):hover {
            background-color: var(--accent-color);
            box-shadow: 0 5px 15px rgba(239, 71, 111, 0.3);
        }

        .inr-quote {
            font-size: 1.2rem;
            text-align: center;
            font-style: italic;
            margin-top: 2rem;
            padding: 1rem;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .inr-celebration-title {
                font-size: 2rem;
            }

            .inr-subtitle {
                font-size: 1.1rem;
            }

            .inr-header::before,
            .inr-header::after {
                display: none;
            }

            .inr-events-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .inr-contact-info {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .inr-buttons {
                flex-direction: column;
                align-items: center;
            }

            .inr-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .inr-container {
                padding: 1.5rem;
            }

            .inr-celebration-title {
                font-size: 1.8rem;
            }

            .inr-celebration-title::before,
            .inr-celebration-title::after {
                display: none;
            }

            .inr-subtitle {
                font-size: 1rem;
            }

            .inr-section-title {
                font-size: 1.5rem;
            }
            
            .inr-events-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animation */
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }

        .inr-floating {
            animation: float 3s ease-in-out infinite;
        }


        .inl-right-column {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .right-img-wrapper {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        
        .right-img {
            width: 100%;
            height: 100%;
            object-fit: cover;  /* ensures the image fills the box without distortion */
            display: block;
            border-radius: inherit;
        }
        
        @media (max-width: 992px) {
            .inl-columns {
                grid-template-columns: 1fr;
            }
        }
                
        .inl-left-column,
        .inl-right-column {
            flex: 1 1 50%;
        }
        
        .inl-right-column {
            display: flex;
            align-items: stretch;
            justify-content: center;
        }
        
        .right-img-wrapper {
            width: 100%;
            height: 92%;
            margin: 25px;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .right-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: inherit;
        }
        @media (max-width: 992px) {
            .inl-columns {
                flex-direction: column;
            }
        }
        @media (max-width: 992px) {
            .inl-columns {
                flex-direction: column;
            }
        
            .inl-left-column,
            .inl-right-column {
                flex: 1 1 100%;
            }
        
            .right-img {
                height: auto;
            }
        }

        .inr-join-contact-wrapper {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .inr-join-contact-wrapper .inr-join-section,
        .inr-join-contact-wrapper .inr-contact-section {
            flex: 1 1 48%;
            box-sizing: border-box;
        }
        
        @media (max-width: 768px) {
            .inr-join-contact-wrapper {
                flex-direction: column;
            }
        
            .inr-join-contact-wrapper .inr-join-section,
            .inr-join-contact-wrapper .inr-contact-section {
                flex: 1 1 100%;
            }
        }
        
                        
        /* style for gallery section */


        /* gallery */

.vp72_header_container_x4f9 {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .recent-photos-heading h2{
    font-size: 5rem;
    color: #800000;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: "Crimson Pro", serif;
    letter-spacing: 1px;
  }
  
  .vp72_main_title_x4f9 {
    color: #e85c00;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .vp72_subtitle_x4f9 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .vp72_separator_line_x4f9 {
    width: 80px;
    height: 3px;
    background-color: #e85c00;
    margin: 15px auto;
  }
  
  .vp72_navigation_wrapper_x4f9 {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .vp72_nav_button_x4f9 {
    padding: 12px 20px;
    margin: 0 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    position: relative;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .vp72_nav_button_x4f9:hover {
    color: #e85c00;
  }
  
  .vp72_nav_button_active_x4f9 {
    color: #e85c00;
    font-weight: 600;
  }
  
  .vp72_nav_button_active_x4f9::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e85c00;
  }
  
  .vp72_gallery_layout_x4f9 {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    grid-gap: 20px;
    width: 80%;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 40px;
  }
  
  .vp72_gallery_card_x4f9 {
    perspective: 1000px;
    height: 270px;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .vp72_gallery_card_x4f9.vp72_hidden_card_x4f9 {
    display: none;
  }
  
  .vp72_card_inner_x4f9 {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .vp72_gallery_card_x4f9:hover .vp72_card_inner_x4f9 {
    transform: rotateY(180deg);
  }
  
  .vp72_card_face_front_x4f9,
  .vp72_card_face_back_x4f9 {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
  }
  
  .vp72_card_face_front_x4f9 {
    background-color: #f1f1f1;
  }
  
  .vp72_card_face_back_x4f9 {
    background-color: #f8f8f8;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
  }
  
  .vp72_card_image_x4f9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .vp72_media_indicator_x4f9 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  .vp72_media_indicator_x4f9::before {
    content: "\25B6";
    color: #333;
    font-size: 12px;
  }
  
  .vp72_card_title_x4f9 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .vp72_card_description_x4f9 {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .vp72_content_type_badge_x4f9 {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 2;
  }
  
  .vp72_no_content_message_x4f9 {
    text-align: center;
    grid-column: 1 / -1;
    padding: 40px;
    font-size: 18px;
    color: #666;
    display: none;
  }
  
  @media (max-width: 768px) {
    .vp72_nav_button_x4f9 {
      padding: 10px 15px;
      font-size: 12px;
      margin-bottom: 5px;
    }
  
    .vp72_gallery_layout_x4f9 {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }

  
          /* Center the section content with max-width 90% */
          .inlb-temple-blog-section {
            padding-top: 10px; /* pad-t class */
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 25px;
        }
        
        /* Center the section heading */
        .inlb-text-center {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .inlb-section-heading {
            font-size: 32px;
            color: #333;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .inlb-section-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: #ff6b35;
        }
        
        /* Blog grid layout */
        .inlb-blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .inlb-blog-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .inlb-blog-card:hover {
            transform: translateY(-5px);
        }
        
        .inlb-blog-img {
            height: 200px;
            overflow: hidden;
        }
        
        .inlb-blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .inlb-blog-card:hover .inlb-blog-img img {
            transform: scale(1.05);
        }
        
        .inlb-blog-content {
            padding: 20px;
            background: #fff;
        }
        
        .inlb-blog-content h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .inlb-blog-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .inlb-read-btn {
            display: inline-block;
            color: #ff6b35;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .inlb-read-btn:hover {
            color: #e04f18;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .inlb-temple-blog-section {
                width: 95%;
            }
            
            .inlb-blog-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
        }


        /* style for footer part */


/* ISCRON Footer CSS */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Spectral:wght@400;500;600&display=swap');

/* Variables */
:root {
    --primary-color: #ff8c00;
    --secondary-color: #8b4513;
    --accent-color: #ffc107;
    --light-accent: #fff3e0;
    --dark-color: #483434;
    --light-color: #f8f9fa;
    --text-color: #594a3c;
    --footer-bg: #f5f0e6;
    --divider-color: rgba(139, 69, 19, 0.2);
}

/* Footer Base Styles */
.inl-footer {
    background-color:#ffedc8;
    color: var(--text-color);
    position: relative;
    padding: 1rem 0 1rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.inl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ornamental Elements */
.inl-footer-ornament {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.inl-ornament-1 {
    top: 20px;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23804000' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(15deg);
}

.inl-ornament-2 {
    bottom: 30px;
    right: 5%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23804000' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-10deg);
}

/* Footer Top Area */
.inl-footer-top {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.inl-footer-logo {
    display: inline-block;
    text-align: center;
}


.inl-logo {
    max-width: 120px;
    height: auto;
    display: inline-block;
}

.inl-logo-text p {
    font-size: 0.9rem;
    font-style: italic;
}

.inl-footer-tagline {
    font-family: 'Spectral', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-color);
}

/* Footer Main Content */
.inl-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.inl-footer-info,
.inl-footer-links,
.inl-footer-newsletter {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
    padding: 0 15px;
}

.inl-footer-main h4 {
    font-family: 'Spectral', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.inl-footer-main h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: var(--primary-color);
}

/* Contact List */
.inl-contact-list {
    list-style: none;
}

.inl-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.inl-contact-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
    min-width: 20px;
    text-align: center;
}

/* Quick Links */
.inl-quick-links {
    list-style: none;
    columns: 2;
    column-gap: 20px;
}

.inl-quick-links li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 15px;
}

.inl-quick-links li:before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.inl-quick-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.inl-quick-links a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

/* Newsletter */
.inl-footer-newsletter p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.inl-newsletter-form {
    margin-bottom: 1.5rem;
}

.inl-form-group {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.inl-form-group input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.9rem;
    outline: none;
    background-color: white;
}

.inl-form-group button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inl-form-group button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Social Icons */
.inl-social-icons {
    display: flex;
    gap: 12px;
}

.inl-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--secondary-color);
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 3px 6px var(--inl-shadow);
    transition: all 0.3s ease;
}

.inl-social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer Divider */
.inl-footer-divider {
    position: relative;
    height: 40px;
    text-align: center;
    margin: 1rem 0;
}

.inl-footer-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--divider-color);
}

.inl-divider-symbol {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--footer-bg);
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ff8c00' d='M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
}

/* Footer Bottom */
.inl-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.inl-copyright {
    margin-bottom: 0.5rem;
}

.inl-motto {
    font-style: italic;
    font-family: 'Spectral', serif;
    margin-top: 0.3rem;
    color: var(--secondary-color);
}

.inl-footer-credit {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .inl-footer-main {
        flex-direction: column;
    }
    
    .inl-footer-info,
    .inl-footer-links,
    .inl-footer-newsletter {
        width: 100%;
        margin-bottom: 2rem;
        padding: 0;
    }
    
    .inl-quick-links {
        columns: 1;
    }
    
    .inl-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .inl-copyright {
        margin-bottom: 1rem;
    }
}